module.exports   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 10
rs 9.9
1
const atImport = require("postcss-smart-import");
2
const autoprefixer = require('autoprefixer');
3
const rucksack = require('rucksack-css');
4
const csswring = require('csswring');
5
6
module.exports = function () {
7
  return [
8
    atImport,
9
    rucksack(),
10
    autoprefixer({
11
      browsers: ['last 2 versions']
12
    }),
13
    csswring
14
  ];
15
};
16